Answers for "git ignore init"

13

create gitignore

# creates gitignore file
$ touch .gitignore
Posted by: Guest on July-11-2020
8

git init

cd /path/to/my/codebase
git init   
git add .    
git commit -m "my comment"
Posted by: Guest on March-22-2020
1

Git init

$ git init   # You're done!  
$ git remote add origin url_of_your_git_server   # So that you can push your code somewhere.
Posted by: Guest on August-20-2021
1

how to generate a .gitignore

echo "function gi() { curl -L -s https://www.gitignore.io/api/$@ ;}" >> ~/.bash_profile && source ~/.bash_profile
Posted by: Guest on December-21-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language