您的位置:首页 > 其它

git创建新仓库的一些提示信息摘录

2014-12-24 22:44 204 查看

…or create a new repository on the command line

touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/wmengbeyond/my_makefile.git git push -u origin master


…or push an existing repository from the command line

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