cd D:\myDev
git init
  • 设置用户名 密码
$ git config --global user.name "Your Name"
$ git config --global user.email "email@example.com"
$ git config --list

git config命令的--global参数,表示你这台机器上所有的Git仓库都会使用这个配置,当然也可以对某个仓库

使用 Git 管理项目

添加文件到仓库:

git add .

在 VS Code 中打开集成终端,导航到相应的项目文件夹,添加文件到仓库:

提交更改:

提交更改并添加提交信息:

git commit -m "Initial commit"

添加远程仓库

git remote add origin <远程仓库URL>

Leave a reply

<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong> 

required