gpt4 book ai didi

android - 如何开始将 Git 与 Android Studio 集成?

转载 作者:行者123 更新时间:2023-11-29 19:18:13 24 4
gpt4 key购买 nike

我已经在我的 LAN 上设置了一个 Git 服务器(适用于 Mac 的简单 Git 服务器)。我正在使用局域网上的其他机器进行 Android Studio 开发。现在怎么办?在 Android Studio 的 VCS 菜单上,“Integrate Project...”显示为灰色。

如果我理解,我必须首先在工作站上创建一个本地存储库,然后以某种方式将我的项目文件放入其中并将其复制到服务器。也想不通怎么办。如果您已经设置并填充了远程存储库,它似乎很有用,但我无法做到这一点。

此外:是否建议为每个项目创建一个单独的存储库?

最佳答案

如果您已经在线设置了 git 存储库。首先你做git init在你想提交给 git 的目录中,然后你需要通过执行 git add . 来提交你想添加的文件。对于您的所有文件或 git add <your file>对于特定文件。之后,您需要通过执行 git commit -m "your message here " 来提交文件。然后你做:

git remote add origin <remote repository URL> //get this from git assuming your have already set up the git repo
# Sets the new remote
git remote -v
# Verifies the new remote URL
Push the changes in your local repository to GitHub.

git push -u origin master
# Pushes the changes in your local repository up to the remote repository you specified as the origin

所有这些信息都来自此处的 git 文档: https://help.github.com/articles/adding-an-existing-project-to-github-using-the-command-line/

是的,通常您希望每个项目都有一个单独的存储库。有异常(exception),但就我个人而言,我还没有找到合适的。

关于android - 如何开始将 Git 与 Android Studio 集成?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42988761/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com