carnal0wnage / weirdAAL

WeirdAAL (AWS Attack Library)
773 stars 92 forks source link

change config file to not be tracked #14

Closed cktricky closed 6 years ago

cktricky commented 6 years ago

CG mentioned some git voodoo that will keep the config.py file but not track any updates to it.

carnal0wnage commented 6 years ago

You may want to run the following command to ignore changes to your config.py file when you git pull in the future:

git update-index --assume-unchanged config.py

To undo and start tracking again:

git update-index --no-assume-unchanged config.py
carnal0wnage commented 6 years ago

i've added the above to the wiki as well. if this is good please close it out @cktricky

cktricky commented 6 years ago

Do the users have to run this when they use the framework then?

cktricky commented 6 years ago

Asked the question before I read the wiki, my bad 😄