Skip to content

Commit de7524f

Browse files
committed
updating notes on gitignoring file configurations
1 parent adca84e commit de7524f

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

Git-and-Github/IMPORANT-Gitignore-a-file-thats-ALREADY-PUSHED-to-Git .md

+8
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,12 @@ git rm -r --cached .
2424
git add .
2525
git commit -am 'git cache cleared'
2626
git push
27+
```
28+
29+
I have create an alias for doing the above
30+
31+
OR The below for running all together
32+
33+
```
34+
git rm -r --cached . && git add . && git commit -am 'git cache cleared' && git push
2735
```
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```
2+
3+
```

0 commit comments

Comments
 (0)