| title | Quickstart: Saving Chats |
|---|
Tig is a powerful tool that lets you save context and share them with your team. Follow these simple steps to get up and running.
Go to app.usetig.dev and create an account to get started with Tig.
Install the Tig package globally using npm:
npm install -g @tigtech/tigRun the login command to connect your Tig account to GitHub:
tig loginThis will authenticate your local Tig installation with your GitHub account.
The login process will prompt you with an 8-character code. You'll need to go to [https://github.com/login/device](https://github.com/login/device) to enter this code and complete the authentication.Make sure your project has a remote repository configured:
cd /path/to/your/project
git remote -vIf no remote is set, add one:
git remote add origin https://github.com/your-username/your-repo.gitAfter ensuring your remote is set, run the setup command to configure Tig for your project:
cd /path/to/your/project
tig setupTig will automatically create a .cursorrules file in your project directory to configure the Tig MCP Tool. This file contains the necessary configuration for Cursor to access Tig's context.
Now you're ready to start using Tig! Here's how to upload your first chat:
If you have an existing project with chat history, you can upload all past chats to Tig:
tig upload-chatsIf you're starting fresh, simply start using your AI assistant in your project directory.
When you commit your changes, Tig will store your chats locally:
git commit -m "Add new feature"When you push to your repository, Tig will upload your chats to the cloud:
git pushTo view and manage your saved conversations, go to app.usetig.dev and log in with your account.
Here you can:
- Browse all your saved conversations
- Search through your team's history
- Access context from previous sessions
Continue coding as you would normally and Tig will capture your conversations automatically.
Now that you have Tig set up, explore these powerful features:
When you open a pull request, Tig automatically posts a link to view all AI interactions chronologically—perfect for code reviews and understanding how features were built Learn more about the GitHub App that enables PR view automation and branch remapping View AI interactions for specific lines of code to understand how they were created