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
#!/bin/bash | |
function merge { | |
git pull --rebase | |
git cherry-pick -x $1 | |
git status | |
echo "Commit? (y/n):" | |
read XN |
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
const firstObject = {attribute: 1} | |
const secondObject = {firstAttribute: 1, secondAttribute: 2} | |
const thirdObject = {firstAttribute: 1, secondAttribute: 2, thirdAttribute: 3} |
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
const firstObject = { | |
attribute: 1 | |
} | |
const secondObject = { | |
firstAttribute: 1, | |
secondAttribute: 2 | |
} | |
const thirdObject = { | |
firstAttribute: 1, | |
secondAttribute: 2, |