1. 多使用git help
命令来获取git
工具的帮助文档
git help [-a|--all [--[no-]verbose]] [-g|--guide]
[-i|--info|-m|--man|-w|--web] [COMMAND|GUIDE]
git help --web func #web方式查看
git help man #man手册查看
2. 创建仓库及最小配置
'''
在正式创建代码仓库之前,需要对git进行初始化配置
'''
git config --global user.name 'yourname'
git config --global user.email 'youemail@xxx.xxx'
'''
--global 对当前用户的所有仓库有效
除此之外对config的参数还有:
--local 只对一个仓库生效
--system 对系统所有登录的用户有效
'''
git config --list #查看配置信息
git config --list --global
git config --list --local
git config --list --system
'''
创建第一个仓库
'''
cd /project-path
git init
3. 暂存区与commit
git commit -m'info' #commit with descriptions
git add #添加文件到暂存区
git add -u #提交所有暂存区文件
4. 文件重命名
git mv oldfile-name newfile-name #等效为->
-> mv oldfile-name newfile-name #更改文件名
-> git add newfile-name
-> git rm oldfile-name
5. 版本演变
git log --online #简要查看
git log --online -all
git log -n + number #查看近number次的版本记录
git log --graph #图形化显示
git branch #查看分支
···
git help --web log / func
6. 切换分支
git checkout master #切换到master分支
网友评论