This shows you the differences between two versions of the page.
code:git:obecne [2015/01/08 18:12] 127.0.0.1 external edit |
code:git:obecne [2021/03/12 18:42] (current) hansek |
||
---|---|---|---|
Line 236: | Line 236: | ||
git rev-list HEAD...origin/ | git rev-list HEAD...origin/ | ||
</ | </ | ||
+ | |||
+ | |||
+ | ===== Ignorování změn v trackovaných souborech ===== | ||
+ | Viz https:// | ||
+ | |||
+ | <code bash> | ||
+ | # mark as ignored | ||
+ | git update-index --assume-unchanged [< | ||
+ | |||
+ | # To undo and start tracking again: | ||
+ | git update-index --no-assume-unchanged [< | ||
+ | </ | ||
+ | |||