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

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

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

此过程假设您已经:

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

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

  1. 在计算机上,将要上传到 GitHub Enterprise Server 的文件移入在克隆仓库时创建的本地目录。
  2. 打开 Terminal(终端)Terminal(终端)Git Bash
  3. 将当前工作目录更改为您的本地仓库。
  4. 将要提交的文件暂存到本地仓库。
    $ git add .
    # Adds the file to your local repository and stages it for commit. 要取消暂存文件,请使用 'git reset HEAD YOUR-FILE'。
  5. 提交暂存在本地仓库中的文件。
    $ 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' 并再次提交和添加文件。
  6. 推送更改(本地仓库中)到 您的 GitHub Enterprise Server 实例。
    $ git push origin your-branch
    # 将本地仓库中的更改推送到指定为源的远程仓库

延伸阅读