git config --global user.name "yyyy"
git config --global user.email "[email protected]"
ssh $ ssh-keygen -t rsa -C "[email protected]"
git clone git@github.com/xx/xx.git
git init
git remote add origin git@github.com/xx/mxx.git
git pull origin master
1 git add <file> // 可以反复使用,添加多个文件
1 git add . // 添加全部(排除.gitignore中的文件)
2 git commit -m '注释'
git push origin master
git status
git log
git reset --hard HASH //返回到某个节点,不保留修改。
git reset --soft HASH //返回到某个节点。保留修改
git branch //查看本地分支
git branch -a //查看远程分支
git branch <name> //创建分支
git checkout <name> //切换分支
git merge dev //合并dev分支到当前分支
git branch -d <name> //删除本地分支
git push origin --delete <name> //删除服务器分支
git rm -r --cached test // 单个文件
git rm -r --cached . // 全部
git add .
git commit
git push origin master
git config --global http.proxy "http://127.0.0.1:8080"
git config --global https.proxy "http://127.0.0.1:8080"
git config --global http.proxy "socks5://127.0.0.1:1080"
git config --global https.proxy "socks5://127.0.0.1:1080"
git config --global --unset http.proxy
git config --global --unset https.proxy