其他分享
首页 > 其他分享> > git常用命令

git常用命令

作者:互联网

git config --global user.name 'xxx'
git config --global user.email 'xxx'
git config user.name
git config user.email
git config --list
ssh-keygen -t rsa -C 'email'
cat ~/.ssh/id_rsa.pub
git clone 'xxx'
git remote -v
git branch
git branch -r
git branch -a
git checkout 'xxx'
git checkout -b 'xxx'
git branch -d 'xxx'
git pull
git fetch
git checkout .
git reset HEAD .
git reset --hard HEAD^ | git reset --hard 'commitid'
git merge name
git status
git add . | git add 'src'
git commit -m 'xxx'
git pull | git pull origin '分支名'
git push | git push origin '分支名'
git status -s
git add 'xxx'
git stash -u -k
git commit -m
git pull
git push
git stash pop
git stash
git pull origin dev
git stash pop
git log
git reset --hard 'commitid'
git push --force
git log
git revert 'commitid'
git push
git reset HEAD
git checkout .
git clean -df .

标签:reset,git,--,xxx,常用命令,commit,分支
来源: https://www.cnblogs.com/nicoz/p/16588853.html