We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8d7d8c commit 764c953Copy full SHA for 764c953
README.md
@@ -1,8 +1,16 @@
1
-##Getting started
+## Getting started
2
* `npm i`
3
4
-##Todo
+## Todo
5
6
create a basic server with express
7
that will send back the index.html file on a GET request to '/'
8
it should then send back jsonData on a GET to /data
9
+
10
+## Fetch all branches locally
11
12
+```
13
+git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done
14
+git fetch --all
15
+git pull --all
16
0 commit comments