GitHub推送+Vscode
create a new repository on the command line
打开vscode terminal
echo "# PorjName" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/usrname/repository.git
git push -u origin main
or push an existing repository from the command line
git remote add origin https://github.com/usrname/repository.git
git branch -M main
git push -u origin main
添加所有文件到 Git 仓库
在项目的根目录下,运行以下命令以添加所有新的或被修改的文件到暂存区:
git add .
接下来,将这些更改提交到本地仓库:
git commit -m "Initial commit"
最后,使用以下命令将代码推送到 GitHub:
git push origin main
假设主分支名为 main。如果分支名不是 main,替换为实际的分支名。
git checkout -b main
这将创建并切换到一个名为 main 的新分支。
删除现有的远程仓库
删除现有远程仓库:
git remote remove origin
添加新的远程仓库:
git remote add origin https://github.com/usrname/repository.git
如果您已经在本地创建了分支并进行了提交,您可以使用以下命令将代码推送到新的远程仓库:
git push -u origin main
Git 下载 repository
git clone https://github.com/username/repository.git