Compare commits

..

2 Commits

Author SHA1 Message Date
Johan
53519f7546 Merge branch 'master' of 192.168.0.108:MySpace/Gitea 2022-02-17 20:06:22 +01:00
Johan
52fe26335b Git cheat sheet.md 2022-02-17 20:05:51 +01:00

14
Git cheat sheet.md Normal file
View File

@ -0,0 +1,14 @@
#### Checka ut specifik commit
<code>git checkout <sha></code>
#### Checka ut senaste commit
<code>git checkout master</code>
#### Pull av repository, ignorera och skriv över lokala filer
<pre><code>git fetch --all
git reset --hard
git pull
</code></pre>