I have a github repository and a local directory with changes without any .git directories in it. I want to commit my changes. I can clone github and then copy files there but this would change modification dates of the files which I don t want.
我做了些什么:
git init
git remote add origin https://...
git fetch origin
git add .
git status - shows all files as new
git diff origin/main - shows the correct changes I want to commit
我当时这样做了。
git commit -m My first commit
在我这个地方分支机构成为主人之后,地位不会再显示任何情况。
我知道,这可能是真正的基本内容,但我无法真正找到这样做的任何指南。
<><>UPDATE: 我已经找到了这方面一个简单而简单的工作方式。 在其他一些名录中,我确实:
git clone https://...
然后复制我的真工作名录,并:
git add .
git status
And volia! 所有这些变化都是存在的。
根据我的理解,现在,用“git init”获得远距离添加、git fetch”。 我将最终建立一个空洞的地方存放处,并将首先致力于这项工作。 它将产生由2项承诺组成的“共同承诺”:1项是初步承诺,2项是实际承诺。 这会非常看似这种“初步”的。