自学内容网 自学内容网

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 项目中


原文地址:https://blog.csdn.net/qq_46454669/article/details/143926639

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!