Skip to content

Commit

Permalink
Update Troubleshooting and FAQ.md
Browse files Browse the repository at this point in the history
  • Loading branch information
avenger11 authored Dec 20, 2023
1 parent a74f5c3 commit d84cf15
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion pages/Troubleshooting and FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,23 @@
title: Troubleshooting and FAQ
layout: home
nav_order: 5
---
---



# Other

### Removing file and folder from Github Repository only

Remove file from Github repository only

git rm --cached file1.txt file2.txt

Remove folder from Github repository only

git rm -r --cached folder_name

Then

git commit -m "Remove folder from Git repository"
git push origin <branch-name>

0 comments on commit d84cf15

Please sign in to comment.