You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
I have a few files that have paths in them that i have changed to run locally.
I don't want these local path changes to get pushed to the repo but i also do not want to ignore the file as I may change other parts and want to push those changes.
My two concerns are 1. the changes are always there in the "Unstaged files" section, which becomes annoying to constantly go through all the files to try find the real changes that i want to commit. 2. im worried i accidentally stage the whole file without removing the path change and push that change to the repo unknowingly (which brings me back to point 1 where i have to carefully check the files to avoid this)
What is the easiest and fastest way to deal with this?
I've tried using a branch but its a headache trying to push changes to the master branch.
Using a patch is slow and its annoying to constantly update the patch.
Stashing is the easiest but it means i lose the local changes while its stashed.
Ive tried to look into assume-unchanged and skip-worktree but it seems they both have issues when pulling or hard reset (https://stackoverflow.com/questions/13630849/git-difference-between-assume-unchanged-and-skip-worktree/23806990#23806990).