cd
into your Dev folder- git clone scotchbox folderName
- change ** in vagrantfile line
config.vm.network "private_network", ip: "192.168.33.**"
to a new two digit number - open up hosts file (Finder -> Go -> Go To Folder - > /private/etc/hosts )
- if you don't have access to edit that, create new plaintext doc
- add new line with
192.168.33.** urlName.dev
with ** being the two digit number you entered - if you used a new plaintext doc, override/replace /private/etc/hosts with new file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//credit : https://github.com/asmarques/pt-id | |
function pad(value, length) { | |
var result = value + ''; | |
while (result.length < length) { | |
result = '0' + result; | |
} | |
return result; |
No problem,
run
git filter-branch --msg-filter "cat - && echo && echo 'Signed-off-by: Your Name <[email protected]>'" HEAD~2..HEAD
To sign-off the last two commits.
Then force to push them to the remote repo with the -f
option: