Git base operate
1 | 1. 创建目录文件夹并进入 pwd可查看现在所在的位置 |
Git branch
1 | git branch -r 查看远端分支 |
Git branch delete
1 | git push origin --delete dev 删除远程分支 |
Git global setup
1 | git config --global user.name "zhouen" |
Create a new repository
1 | git clone http://192.168.1.134/zhouen/test.git |
Existing folder
1 | cd existing_folder |
Existing Git repository
1 | cd existing_repo |
Ignore the file
1 | touch .gitignore |
tags
1 | //删除tag |
Problems and Solutions
- git push -u origin master 遇到错误The requested URL returned error: 403 Forbidden while accessing
1 | 解决方案:vim .git/config |
failed to push some refs to ‘https://enamor@github.com/enamor/CCReader-swift.git'
这个问题是因为远程库与本地库不一致造成的,那么我们把远程库同步到本地库就可以了。
使用指令
1 | git pull --rebase origin master |
让 .gitignore 文件生效
1 | 让 .gitignore 文件生效 |