[Solved] Why does -u mean remember for git push [-u]?
it means –set-upstream and that means: git push –set-upstream sets the default remote branch for the current local branch. (see this answer) 5 solved Why does -u mean remember for git push [-u]?
it means –set-upstream and that means: git push –set-upstream sets the default remote branch for the current local branch. (see this answer) 5 solved Why does -u mean remember for git push [-u]?
Executive Summary $ git push -d <remote_name> <branchname> $ git branch -d <branchname> Note: In most cases, <remote_name> will be origin. Delete Local Branch To delete the local branch use one of the following: $ git branch -d <branch_name> $ git branch -D <branch_name> The -d option is an alias for –delete, which only deletes … Read more