git基本操作

在我自己的github上我已经新建了一个项目,并作为master,现在我通过git clone源代码并进行了满足我开发需求的修改,现在想把改好的代码作为一个branch上传上去,步骤如下

1.初始化本地仓库

在本地的文件夹下执行,初始化git仓库

git init

2.添加远程仓库

其中的网址为我在github上项目的地址

git remote add origin https://github.com/username/repo.git

检查远程仓库是否添加成功:

git remote -v

应该能看到类似以下的输出:

origin  https://github.com/username/repo.git (fetch)
origin  https://github.com/username/repo.git (push)

3.创建新分支

创建并切换到一个新的分支(比如 new-branch):

git checkout -b new-branch

添加所有文件到暂存区:

git add .

提交更改:

git commit -m "Initial commit for new branch"

4.推送到github

将新分支推送到远程仓库:

git push -u origin new-branch

推送完成后,分支将出现在 GitHub 项目中

上一篇:Vue Mixin混入机制


下一篇:MySQL 的 INSERT(插入数据)详解