您的位置:首页 > 其它

git的使用

2016-03-05 23:09 344 查看
新建一个仓库并初始化和提交:

echo "# helloworld" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/sky101010ws/helloworld.git git push -u origin master


增加修改的文件:

git add 修改的文件
git commit -m "修改说明"
git push -u origin master


新增加文件:(第三条语句在bitbucket中没有用)

git add 新增加文件
git commit -m "first commit"  本地提交并增加提交日志
git remote add origin https://github.com/sky101010ws/helloworld.git   经测试该语句在github中好像也没有用,用时需要注意
git push -u origin master    将本地提交的变化提交到远程


pull一个仓库:

git init

git pull https://github.com/sky101010ws/helloworld.git
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: