我在笔记本电脑上做了一个回购。它在github.com上有一个项目页面。
我现在正在使用台式电脑。我手动复制了一些文件,因为我认为我不需要repo中的每个文件(因此我没有将repo克隆到我的桌面上)。如何将我的桌面本地文件夹与现有的repo连接,以便我可以将桌面上的文件推送到repo(桌面文件现在是这些文件的最新版本,因为我从笔记本电脑停止工作)
答案 0 :(得分:2)
使用命令行将现有项目添加到GitHub:
# Initialize the local directory as a Git repository.
git init
# Add files
git add .
# Commit your changes
git commit -m "First commit"
# Add remote origin
git remote add origin remote repository URL
# Remote URL look like this https://github.com/user/repo.git
# Verifies the new remote URL
git remote -v
# Push your changes
git push origin master
第二种方式@evolutionxbox建议你:
如果在任何情况下git拒绝您的推送,您可以使用git push origin master --force
答案 1 :(得分:0)
使用以下命令在temp-dir目录中创建本地存储库: git clone temp-dir
进入temp-dir目录。
执行git分支-a
使用git checkout分支名称从源中签出要复制的所有分支
您完成了