Changes
Page history
Created git (markdown)
authored
May 04, 2017
by
Jens Hahn
Hide whitespace changes
Inline
Side-by-side
git.md
0 → 100644
View page @
b1f4fba1
# Set up **git** repo
*
install
[
```git```
](
https://git-scm.com/download/
)
*
set email adress:
```git config --global user.email "meep@meep.com"```
(has to be the email you used in
*github.com*
)
*
set name:
```git config --global user.name "meep meep"```
*
**clone**
the repo:
```git clone https://github.com/tbphu/Python_precourse.git```
*
**pull**
repo:
```git pull```
*
**commit**
:
```git commit -m "I have done this and that" ./meep.py```
*
**push**
commits:
```git push```
\ No newline at end of file