赞
踩
在这之前,你需要拥有一个远程仓库,可以是现成的或者新建的,此处略。
并且通过 git bash 或者 cmd 配置好 git 的基本配置:
git config --global user.name "xxxx"
git config --global user.email xxxxx
这种情况的基本步骤是:
git init
git remote add origin repo_url.git
其中repo_url.git
是远程仓库的URL,在这儿找:
这一步很关键,如果远程仓库非空,缺少这一步会导致冲突!
git pull --rebase origin master
注意git add .
的时候一定要在包含.git的文件夹下进行! VSCode默认命令行终端可能不在对应目录下
git add .
git commit -m "Commit Description"
git push origin master
这种情况的基本步骤是:
可以克隆到一个空文件夹,也可以克隆到指定位置,比如Desktop
git clone repo_url.git
和上面的过程相同,注意git add .
的路径是否正确。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。