
git-scp
List of commands for git-scp:
-
git-scp:tldr:139fb git-scp: Copy files that has been changed in the last commit and any staged or unstaged files to a remote.$ git scp ${remote_name} HEAD~1try on your machineexplain this command
-
git-scp:tldr:1900c git-scp: Copy staged and unstaged files to a remote.$ git scp ${remote_name} HEADtry on your machineexplain this command
-
git-scp:tldr:202dd git-scp: Copy specific files to a remote.$ git scp ${remote_name} ${filename1 filename2 ---}try on your machineexplain this command