diff --git a/README.md b/README.md new file mode 100644 index 0000000..056fe59 --- /dev/null +++ b/README.md @@ -0,0 +1,24 @@ +# Command line instructions + +Git global setup + + git config --global user.name "seu nome" + git config --global user.email "seu email" + +Create a new repository + + git clone http://git.planejamento.gov.br// + cd + touch README.md + git add README.md + git commit -m "add README" + git push -u origin + +Existing folder or Git repository + + cd existing_folder + git init + git remote add origin http://git.planejamento.gov.br// + git add . + git commit + git push -u origin \ No newline at end of file -- libgit2 0.21.2