Difference between revisions of "Workflow"
Line 86: | Line 86: | ||
== SourceTree == | == SourceTree == | ||
− | '' | + | '''SourceTree''' is a tool that enables you to perform version control using a graphical user interface. It is free and available for Windows 7+ and Mac OS X 10.6+. |
+ | |||
+ | SourceTree is available on the Mac App Store. Windows users (and OS X users who don't like the App Store) may install it from http://sourcetreeapp.com/ | ||
+ | |||
+ | === Git === | ||
+ | |||
+ | '''[[wikipedia:Git (software)|Git]]''' is a ''distributed version control system'' that enables you to track changes to your code and work with collaborators on the same code base. In CSE 132, you used ''Subversion (SVN)'', which is also version control system. | ||
+ | |||
+ | Git, like SVN, is a command-line tool. However, SourceTree enables you to use Git without having to pull up a Terminal window every time you need to perform an action. | ||
+ | |||
+ | In Module 5, you will learn more advanced techniques for using Git. However, for Modules 2-4, you will be using Git primarily as a method to push your changes to your remote repository. | ||
+ | |||
+ | === Configuring SourceTree === | ||
+ | |||
+ | Once you install SourceTree, you need to tell it your name so that it knows how to tag changes you make. | ||
+ | |||
+ | # Open the SourceTree Preferences (SourceTree->Preferences on OS X or Tools->Preferences on Windows). | ||
+ | # Check the box that says "Allow SourceTree to modify your global Mercurial and Git configuration files". | ||
+ | # Enter your name and e-mail address. | ||
+ | |||
+ | '''Note:''' This actually does the same thing as running <code>git config --global user.name <NAME HERE></code> and <code>git config --global user.email <EMAIL HERE></code> from the command line. | ||
+ | |||
+ | === Cloning a Repository === | ||
+ | |||
+ | We will start by '''''cloning''''' a remote Git repository. | ||
+ | |||
+ | "Cloning" in Git is much like "checking out" in SVN: a remote copy of the repository is copied down to a local working directory. '''Word of Caution:''' Git uses the term "checkout" to mean something different (which you will learn in Module 5), so ''do not'' use the words "clone" and "checkout" interchangeably. | ||
+ | |||
+ | If you wanted to clone a repository on the command line, the command would be: | ||
+ | |||
+ | <source lang="bash">$ git clone https://www.example.com/url-of-repo [target-directory]</source> | ||
+ | |||
+ | In SourceTree, go to '''File->New''', enter the remote repository URL and the destination path, and press "Clone". In this screenshot, I am cloning the repository for the Fedora Linux kernel: | ||
== Starting a Project == | == Starting a Project == |
Revision as of 05:49, 31 March 2013
The few minutes it takes to optimize your workflow will be the best few minutes you will spend in CSE 330 and your career. It is remarkable how many hours you can save just by using the best interface for text editing and deployment.
Komodo Edit
This semester in CSE 330, we will be using Komodo Edit as our editor of choice. We chose this editor because:
- It is free for everyone.
- It runs on Windows, Mac OS X, and Linux.
- It supports all of the languages we will be using in this class.
- It has a decent amount tools like auto-completion that will speed up your workflow.
Installation
Komodo Edit is already installed on the CEC lab machines. If you prefer to use your personal computer, download it from the web site: http://www.activestate.com/komodo-edit
Connecting Komodo to your Remote Instance
With a little time spend on configurations and installing a plugin, Komodo Edit enables you to edit files on your desktop and then upload those files directly to your remote instance.
Adding SSH Public Key to Keychain
In order for Komodo to connect to your instance using SSH Public Key Authentication, you need to add your public key permanently to your SSH agent utility. Instructions are below on how to do this in OS X and Windows. You may skip to the next section if you are using password-based authentication.
Mac OS X
- Open Terminal.
- Save your *.pem file to ~/.ssh/cse330.pem:
$ mv /path/to/your/cse330.pem ~/.ssh/cse330.pem
- Run the following command to add the key to your SSH agent:
$ ssh-add ~/.ssh/cse330.pem
- For more information on ssh-add, see the manual.
Windows
under construction
Configure your Server Settings in Komodo
Once you have your public key in your SSH agent (if applicable), follow these steps to tell Komodo how to connect to your remote instance.
- Open the Komodo Edit Preferences. In Windows, this is Edit -> Preferences; in Mac OS X, this is Komodo -> Preferences.
- In the menu on the left, choose Servers.
- For Server Type, select SFTP. (Since you have an SSH server running, you will be able to connect to your instance via SFTP.)
- Name it something like CSE 330 Cloud Instance.
- Enter the details of your instance, including your hostname and username.
- If you are using Public Key Authentication, leave your password empty.
- Unless you explicitly changed your SSH port, your port will be 22.
- Your default path will be where you want to save the files you upload. Generally, this should be the root of your web server.
- Press Add to save the server information, and then press OK.
- IF YOU ARE USING PUBLIC KEY AUTHENTICATION, you need to perform these additional steps:
- In the Komodo Edit Preferences, choose Environment.
- Find the information about your SSH environment:
- Mac OS X:
- Enter the command ssh-agent in Terminal. You should see output similar to:
SSH_AUTH_SOCK=/tmp/ssh-xxxxx/agent.xxxxx; export SSH_AUTH_SOCK;
- SSH_AGENT_PID=xxxxx; export SSH_AGENT_PID;
echo Agent pid xxxxx;
- Enter the command ssh-agent in Terminal. You should see output similar to:
- Windows:
- under construction
- Mac OS X:
- Add the following environment variables in Komodo:
- Name: SSH_AUTH_SOCK
- Name: SSH_AGENT_PID
- The values for these environment variables should be what you learned earlier in step 2.
- Press OK to save your changes.
- To test whether Komodo is able to successfully connect to your server, choose File -> Open -> Remote File. Select CSE 330 Cloud Instance from the drop-down menu. You should be able to see a list of files in your public_html directory.
Installing Upload Extension
Strangely, Komodo Edit does not come built-in with a mechanism to upload files from your computer to the server. Fortunately, the community has released an add-on that gives us this feature.
- In Komodo, go to Tools -> Addons.
- Search for the add-on named Uploader.
- Download and install it, and restart Komodo.
- In your Server preferences, create a new server (or rename an existing one) to be identical to your project name, but starting with a star. For example, in my project named FileShare, I would name the server *FileShare. The default path will be the location to which Komodo will upload your files. Note: The path should be absolute.
- You can now select a file and go to File -> Upload to upload it to your server.
Tip: To make things quicker, you can bind a keyboard shortcut like ctrl/cmd+D to the Upload feature by following these steps:
- In Komodo preferences, choose Editor -> Key Bindings.
- Find the "Upload" command under "General". Press in the "New Key Sequence" box, and press ctrl/cmd+D. Proceed through the on-screen instructions; you can name your new scheme Custom.
- Save the preferences and restart Komodo. You will now be able to upload files by simply pressing ctrl/cmd+D.
SourceTree
SourceTree is a tool that enables you to perform version control using a graphical user interface. It is free and available for Windows 7+ and Mac OS X 10.6+.
SourceTree is available on the Mac App Store. Windows users (and OS X users who don't like the App Store) may install it from http://sourcetreeapp.com/
Git
Git is a distributed version control system that enables you to track changes to your code and work with collaborators on the same code base. In CSE 132, you used Subversion (SVN), which is also version control system.
Git, like SVN, is a command-line tool. However, SourceTree enables you to use Git without having to pull up a Terminal window every time you need to perform an action.
In Module 5, you will learn more advanced techniques for using Git. However, for Modules 2-4, you will be using Git primarily as a method to push your changes to your remote repository.
Configuring SourceTree
Once you install SourceTree, you need to tell it your name so that it knows how to tag changes you make.
- Open the SourceTree Preferences (SourceTree->Preferences on OS X or Tools->Preferences on Windows).
- Check the box that says "Allow SourceTree to modify your global Mercurial and Git configuration files".
- Enter your name and e-mail address.
Note: This actually does the same thing as running git config --global user.name <NAME HERE>
and git config --global user.email <EMAIL HERE>
from the command line.
Cloning a Repository
We will start by cloning a remote Git repository.
"Cloning" in Git is much like "checking out" in SVN: a remote copy of the repository is copied down to a local working directory. Word of Caution: Git uses the term "checkout" to mean something different (which you will learn in Module 5), so do not use the words "clone" and "checkout" interchangeably.
If you wanted to clone a repository on the command line, the command would be:
$ git clone https://www.example.com/url-of-repo [target-directory]
In SourceTree, go to File->New, enter the remote repository URL and the destination path, and press "Clone". In this screenshot, I am cloning the repository for the Fedora Linux kernel:
Starting a Project
When you start a new project, whether individual or group, you should create a new directory and a new Komodo Project file.
- Create a new directory in your repository named after the project you will be starting (e.g., fileshare).
- In Komodo, choose Project -> New Project (or press shift-ctrl-N).
- Navigate to the directory you just created, enter a name for the project (e.g., FileShare.komodoproject), and press "Save".
- You should now see a window like this:
- Press ctrl-N (or cmd-N) to create a new file. Save it in your project. For example, you could create a page named index.html with the Quick and Easy Page Layout:
- Continue creating and editing the files from your site.
- Tip: To change between files without using a mouse, press ctrl-PageUp and ctrl-PageDown (cmd instead of ctrl on OS X). Many computers without explicit PageUp and PageDown buttons bind them to fn-Up and fn-Down. For example, on a MacBook Pro, to change to the next tab, you would press three keys: fn+cmd+down.
- When you are ready, upload your files to your remote server. To do this, go to File -> Save as Other -> Remote File.