0

Being fairly new to Linux and very new to Git, this is proving to be.. problematic.

Can someone please direct me to or tell me the steps required (Ideally step by step) to do this?

I have a directory with my project in it, I want to commit that to Git, I know there is a .gitignore which ignores certain files etc. and I have used GitHub on Windows mainly for local respository stuff which is again the primary purpose now.

Any help on this would be greatly appreciated cheers!

4

2 回答 2

2

欢迎使用 git 和 linux。这里有一些链接可以帮助您入门

https://help.github.com/articles/set-up-git

http://git-scm.com/book

http://git-scm.com/book/en/Git-Basics-Getting-a-Git-Repository

http://zrusin.blogspot.com/2007/09/git-cheat-sheet.html

Git 初学者:权威实用指南

有几种不同的方法可以做到这一点。我认为最简单的是命令行。

打开一个终端,然后 cd 到包含 android 项目的目录。

cd /home/bob/foo
ls

初始化 git repo,这将在文件夹中创建一个隐藏的 .git 文件

git init
ls -a

通过将所有文件添加到工作树来创建您的第一个提交

git add . 
git commit -m "My First Commit"

您现在将拥有一个 master 分支和 1 个提交。您可以使用以下命令查看您的提交

git status
git log

如果您还不习惯使用命令行,您也可以使用 gui 来完成所有这些操作。以下是一些适用于 linux 的程序。

https://git.wiki.kernel.org/index.php/InterfacesFrontendsAndTools#Graphical_Interfaces

于 2013-05-24T13:46:30.430 回答
0

你可以做一个简单的

git init

在命令行中(在正确的目录中)初始化本地存储库。然后你只需要添加你的文件并提交它们:

git add .
git commit -m "first commit"

我强烈建议您阅读Pro Git免费书籍的第一章(至少),以帮助您了解基础知识。

于 2013-05-24T13:41:19.807 回答