021--Git使用

021--Git使用_第1张图片
GIT教学

创建一个新项目并提交:or create a new repository on the command line

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

项目已经存在直接提交:or push an existing repository from the command line

git remote add origin https://github.com/enzoism/Vincent-RPC.git
git push -u origin master

你可能感兴趣的:(021--Git使用)