QUESTIONS
How can I add a new user to my git server?
What do I need to do to add a new git user via ssh keys?
LINKS Create SSH KeySet SSH KeyGit on the Serverssh-copy-idOpen CMD
Open your CMD/terminal and navigate to the direcotry.
cd{path/of/project} Check Status
Ensure this project is not alreay a git project.
gitstatus
If everything is OK, git will complain and say something like this:
fatal: not a git repository (or any of the parent directories): .git Run Init
Run the init command in the directory.
path/of/project:$gitinit Create .gitignore
Create a .gitignore file and set it up.
Add & Commit
Add all files.
path/of/project:$gitadd.
Commit as intial commit
path/of/project:$gitcommit -m"Initial Commit" APP | VERSION Linux/Ubuntu
RELATED TAGS git, server, remote, repository
QUESTIONS
How can I add a new user to my git server?
What do I need to do to add a new git user via ssh keys?