git的使用

来源:互联网 发布:sql语句中系统时间 编辑:程序博客网 时间:2024/06/10 02:06

新建一个仓库并初始化和提交:

echo "# helloworld" >> README.mdgit initgit add README.mdgit commit -m "first commit"git remote add origin https://github.com/sky101010ws/helloworld.gitgit 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


0 0