我们经常发布文档更新,此页面的翻译可能仍在进行中。有关最新信息,请访问英文文档。如果此页面上的翻译有问题,请告诉我们

此版本的 GitHub Enterprise 已停止服务 2020-11-12. 即使针对重大安全问题,也不会发布补丁。 要获得更好的性能、改进的安全性和新功能,请升级到 GitHub Enterprise 的最新版本。 如需升级方面的帮助,请联系 GitHub Enterprise 支持

使用命令行提交文件到仓库

您可以使用命令行将现有文件上传到 GitHub Enterprise Server 仓库。

此过程假设您已经:

警告:永远不要 git 添加提交推送敏感信息到远程仓库。 敏感信息包括但不限于:

更多信息请参阅“从仓库中删除敏感数据”。

  1. On your computer, move the file you'd like to upload to

GitHub Enterprise Server into the local directory that was created when you cloned the repository. 1. 打开 Terminal(终端)Terminal(终端)Git Bash。 1. 将当前工作目录更改为您的本地仓库。 1. 将要提交的文件暂存到本地仓库。

$ git add .
  # Adds the file to your local repository and stages it for commit. 要取消暂存文件,请使用 'git reset HEAD YOUR-FILE'。
  1. 提交暂存在本地仓库中的文件。
    $ git commit -m "Add existing file"
    # Commits the tracked changes and prepares them to be pushed to a remote repository. 要删除此提交并修改文件,请使用 'git reset --soft HEAD~1' 并再次提交和添加文件。
  2. 推送更改(本地仓库中)到 your GitHub Enterprise Server instance。
    $ git push origin your-branch
    # 将本地仓库中的更改推送到指定为源的远程仓库

延伸阅读