替换Git存储库中的文件?

时间:2016-06-12 23:10:37

标签: git gitlab

我在gitlab上的git存储库中有一个工作应用程序。为了追踪错误,我在一个新的应用程序目录中重建了按功能划分的应用程序。错误消失了,现在我想用新应用程序目录中的文件更新存储库中的文件。这样做的正确方法是什么?

1 个答案:

答案 0 :(得分:0)

在您的目录中

1.创建新的git存储库:

git init

2.将您的远程存储库添加到上游:

git remote add origin git@....... 

- 您的存储库git地址

3.检查远程存储库使用的分支:

git checkout -b master (or any other branch that holds your code)

4.添加并提交您的更改:

git add dir/file.py (or php or whatever)

git commit -m 'bug fixed'

4.取消远程更改:

git pull origin master   (or whatever other branch is used)

5.将您的更改推送到远程源:

git push origin master   (or any other branch you checked out)

此时您的代码应位于存储库