从github上给出的git使用说明上看,流程是这样的:

…or create a new repository on the command line

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

…or push an existing repository from the command line

git remote add origin https://github.com/Applepleple/Stormcv-web.git
git push -u origin master

但是发现在使用push时会出现 The requested URL returned error 403,发现以下命令解决问题

git remote set-url origin https://【Your Account】@github.com/Applepleple/Stormcv-web.git

除了上述步骤外,还需要设置自己的账户名和密码

git config --global user.name "Your Name Here"
git config --global user.email "your_email@example.com"


如果需要使用ignore的话,可以在主目录下建一个.gitignore的文件,具体的书写格式这里不再详细介绍啦

添加.gitignore后,用git add \*就可以添加非ignore文件了

如果ignore的文件已经被commit过了,需要

git rm -r –cached .

Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐