Skip to content

Latest commit

 

History

History
21 lines (11 loc) · 413 Bytes

README.md

File metadata and controls

21 lines (11 loc) · 413 Bytes

Use-Git

Untrack Files In Git Repos Without Deleting Them

  1. Do this on all machines

    echo "FILE_NAME" >> .gitignore

    git rm --cached FILE_NAME

    git add -u

    git commit -m "removing files from version control"

  2. Sync with your git server, pull to sync and push to register your local change

    git pull

    git push

http://www.interviewadda.com/shortest-path-nodes-binary-search-tree-bst/