Posts

Showing posts with the label Mac

How to sync an iPhone with Mac without deleting everything

Follow these steps to manually manage music and videos on your iPhone: Connect the iPhone to your first computer. Open  iTunes . Select the iPhone using the Device menu in the top-left. Click the Summary option and select Manually Manage Music and Videos . Click Apply. You can manually drag and drop the music files, and videos that you want between your Mac and your iPhone.

Logout Git on MacOS

Image
Managing Remotes  / Updating credentials from the OSX Keychain Updating credentials from the OSX Keychain You'll need to update your saved username and password in the  git-credential-osxkeychain helper if you change your password or username on GitHub. Updating your credentials via Keychain Access In Finder, search for the  Keychain Access  app. In Keychain Access, search for  github.com . Find the "internet password" entry for  github.com Edit or delete the entry accordingly. Deleting your credentials via the command line Through the command line, you can use the credential helper directly to erase the keychain entry. To do this, type the following command: git credential-osxkeychain erase host=github.com protocol=https [Press Return] If it's successful, nothing will print out. To test that it works, try and clone a repository from GitHub. If you are prompted for a password, the keychain entry was deleted. ...

How to show/hide Hidden Files on macOS Sierra

Image
Show Hidden Files: Open Terminal In Terminal, paste the following:   defaults write com.apple.finder AppleShowAllFiles YES Press return Hold the ‘Option/alt’ key, then right click on the Finder icon in the dock and click Relaunch. Hide: defaults write com.apple.finder AppleShowAllFiles NO