Monthly Archive: October 2013

GIT : merging a single commit from a branch to another branch 2

GIT : merging a single commit from a branch to another branch

Merging a single commit to another branch This is called cherry-pick $> git cherry-pickĀ eba87949886ca99c7383266ae318c54401d786ec It might fail with this : $> git cherry-pick eba87949886ca99c7383266ae318c54401d786ec fatal: bad object eba87949886ca99c7383266ae318c54401d786ec In that case, you have to...

Command-line upload and download on linux 0

Command-line upload and download on linux

[WARNING] This will expose unencrypted the login credentials. To upload : $> curl -T my-local-file.txt ftp://ftp.domain.com --user username:password To download : $> curl -uusername ftp://ftp.domain.com/myfile > savehere.txt