git常用命令记录

简介:

Clone

git clone git@github.com:tangxuehua/eventsourcing.git

Pull

git pull

Commit & Push

git status
git add -A
git commit -a -m "commit detail"
git push

Pull-Request

http://www.worldhello.net/gotgithub/04-work-with-others/010-fork-and-pull.html

git add remote yourProject git@github.com:yourName/yourProject.git
git remote -v
git fetch yourProject
git branch -a
git merge yourproject/master
git log --graph -2

Pull-Request With Local Repos

http://stackoverflow.com/questions/5775580/git-pulling-changes-between-two-local-repositories

that's cool!

git add remote yourProject-local http://www.cnblogs.com/yourName/yourProject
git remote -v
git fetch yourProject-local
git branch -a
git merge yourProject-local/master

Link Commit to Issue

git commit -a -m "fix #1, other messages"

Add or Remove tags

View all tags: git tag
Add a new tag for the newest stable release: git tag -a v0.5 -m "Version 0.5 Stable"
Push the latest tag to GitHub (two dashes): git push --tags
Delete the v0.4 tag locally: git tag -d v0.4
Delete the v0.4 tag on GitHub (which removes its download link): git push origin :v0.4

Branch

create branch: git branch testingBranch
push branch to remote: git push origin testingBranch
view all the branches: git branch
switch branch: git checkout testingBranch
remove branch of local: git branch -D testingBranch
remove branch of remote: git push origin :testingBranch
refresh local branches from remote: git fetch -v --progress --prune origin
 

目录
相关文章
|
2月前
|
开发工具 git
git 常用命令
这些只是 Git 命令的一部分,Git 还有许多其他命令和选项,可根据具体需求进行深入学习和使用。熟练掌握这些命令能够帮助你更高效地管理代码版本和协作开发。
|
5月前
|
存储 开发工具 git
|
27天前
|
机器学习/深度学习 Shell 网络安全
【Git】Git 命令参考手册
Git 命令参考手册的扩展部分,包含了从基础操作到高级功能的全面讲解。
32 3
|
5月前
|
开发工具 git
【GIT 第二篇章】GIT常用命令
Git常用命令涵盖初始化、状态管理、提交、分支处理、远程操作等关键流程。`git init`启动本地仓库,`git clone`下载远程仓库。通过`git status`和`git diff`检查工作状态与差异。利用`git add`暂存文件,`git commit`保存更改。借助`git branch`、`git checkout`、`git merge`和`git rebase`管理分支。使用`git fetch`、`git pull`和`git push`同步远程仓库。通过`git reset`、`git revert`和`git checkout`实现版本回退。
77 0
|
2月前
|
缓存 Java Shell
[Git]入门及其常用命令
本文介绍了 Git 的基本概念和常用命令,包括配置、分支管理、日志查看、版本回退等。特别讲解了如何部分拉取代码、暂存代码、删除日志等特殊需求的操作。通过实例和图解,帮助读者更好地理解和使用 Git。文章强调了 Git 的细节和注意事项,适合初学者和有一定基础的开发者参考。
56 1
[Git]入门及其常用命令
|
3月前
|
开发工具 git
git学习四:常用命令总结,包括创建基本命令,分支操作,合并命令,压缩命令,回溯历史命令,拉取命令
这篇文章是关于Git常用命令的总结,包括初始化配置、基本提交、分支操作、合并、压缩历史、推送和拉取远程仓库等操作的详细说明。
147 1
git学习四:常用命令总结,包括创建基本命令,分支操作,合并命令,压缩命令,回溯历史命令,拉取命令
|
2月前
|
开发工具 git 开发者
|
2月前
|
开发工具 git 开发者
提升Git效率:掌握这5个高级命令
【10月更文挑战第17天】
69 0
|
4月前
|
存储 Linux 开发工具
掌握 Git 命令:每个开发者的必备技能
无论团队项目还是个人开发,掌握 Git 命令都是必备技能。本文介绍 Git 的基本概念与命令,如初始化仓库 (`git init`)、添加文件 (`git add`)、提交更改 (`git commit`)、检出分支 (`git checkout`)、合并分支 (`git merge`) 等,还分享了高级技巧如查看差异 (`git diff`)、撤销提交 (`git revert`)、修复合并冲突 (`git mergetool`) 和使用别名简化命令 (`git config --global alias.ci commit`)。
|
4月前
|
机器学习/深度学习 Shell 开发工具
Python使用管道执行git命令报错|4-7
Python使用管道执行git命令报错|4-7