Forrest logo
back to context overview

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~1
    try on your machine
    explain this command
  • git-scp:tldr:1900c git-scp: Copy staged and unstaged files to a remote.
    $ git scp ${remote_name} HEAD
    try on your machine
    explain this command
  • git-scp:tldr:202dd git-scp: Copy specific files to a remote.
    $ git scp ${remote_name} ${filename1 filename2 ---}
    try on your machine
    explain this command
back to context overview