0724-Git的基本命令
2018-07-24 本文已影响0人
aymincoder
首先查看本地有没有公钥
cd ~/.ssh
ls
存在的话,会有以下文件
authorized_keys2 id_dsa known_hosts
config id_dsa.pub
不存在的话,重新生成
配置信息
git config --global username 'username'
git config --global email 'email@qq.com'
然后输入
ssh-keygen
一路enter,最后会生成上述文件。
我们经常用的命令也就只有那么几个
--ssh-
git status 查看状态
git add <file name> 添加到本地存储
git commit -m 'desc word' 提交到缓存区
git push orgin master/branch-name 推送到远程分支
git pull 拉取远程代码
git checkout <branch name> 切换到某个分支
git branch <branch name> 在本地新建分支
git branch 查看分支