github 远程仓库命令集合

1.设置邮箱和用户名

git config --global user.email "[email protected]"
git config --global user.name "Your Name"

命令集合(个人备忘)

cd cifar10_SqueezeNet # cd到当前本地项目下
git init # 新建项目不能忘记,易造成无repository提醒
git remote add origin [email protected]:changRJ917/cifar10_SqueezeNet.git # 在github新建项目后面copy
git remote -v # 查看当前连接的远程库
git remote rm origin # 删除已存在的远程配置
git add/commit # 在vscode中直接实现,commit上传
# 命令行如下
git add readme.txt
git commit -m 'readme'
# 推送到远程库github进行同步
git push -u origin master

你可能感兴趣的:(github 远程仓库命令集合)