Joined June 2012
·

Steven Nunez

Flatiron
·
United States
·
·
·

"This is the bee's knees".chars also includes spaces. Using #scan does not include them.

Ctrl+w s splits a window horizontally too!

That would include spaces, the scan only returns what matches the regex. Nice find!

Posted to Deleting remote branches over 1 year ago

what you're doing is using git's ability to not have a 1 to 1 push requirement.

You can do:

git push origin experimental_branch:master

and that will push your experimental branch to the master branch.

git push origin :master 

is pushing "nothing" to master thereby deleting it.

Achievements
584 Karma
104,539 Total ProTip Views