eclipse - push specific files using egit -
i thought no pbrainer, reason can't find on issue - there way push specific files egit? our repository contains lrage number of files of no interest me, , every time try push many dirty_tree errors in files don't care about. right-clicking on file , attempting push, tryes push entire repository
i'm using eclipse juno mac, , bitbucket repository
thanks!
git push deals commit objects, not files. if want push specific files, have make commit contains files. in case, might want @ git update-index --assume-unchanged <files>
command, or @ .git/info/exclude
file, .gitignore
except it's local repository (doesn't shared upstream repo).
Comments
Post a Comment