github命令

 

ssh-keygen -t rsa -C “你注册github时的邮箱地址” //密钥地址
ssh -T [email protected] //验证密钥

//配置Git安装(独立仓库)(这里的邮箱和用户名不要照抄)
git config --global user.email "[email protected]"
git config --global user.name "soocute"

cd G:/Github
git clone https://github.com/soocute/test     //(通过Https)后面自己可以改要下载的地址 D:/Github
git clone soocute@host:/soocute/test          //(通过SSH)

git add test.txt //将工作目录中的变化添加到缓存区 -p 交互式更改
git commit -m “注释”//被缓存的副本提交到项目历史
git push origin master //将提交的更改发送到远端仓库

git status     //来查看工作目录和缓存区的状态
git reset     //命令用于撤销提交或被缓存的快照
git log       //命令是 Git 查看项目历史的基本工具
举例 git log --author="John Smith" -p hello.py  这个命令会显示 John Smith 作者对 hello.py 文件所做的所有更改的差异比较(diff)
git revert //生成一个撤消了 引入的修改的新提交,然后应用到当前分支

working dir--add-->index--commit-->head
git clone https://github.com/rometools/rome

你可能感兴趣的:(github)