This file contains hidden or 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
| git remote -v | |
| # View existing remotes | |
| # origin https://github.com/user/repo.git (fetch) | |
| # origin https://github.com/user/repo.git (push) | |
| git remote set-url origin https://github.com/user/repo2.git | |
| # Change the 'origin' remote's URL | |
| git remote -v | |
| # Verify new remote URL |
This file contains hidden or 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
| NSString *myString = [[NSString alloc] initWithData:myData encoding:NSUTF8StringEncoding]; |
This file contains hidden or 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
| self.tableFooterView = [UIView new]; | |