Version 0.2 - A modern GUI client for GitLab operations with Discord-inspired styling
-
Discord-Style Interface 🎨
- Dark theme with accent colors inspired by Discord's UI design
-
Core Git Operations 🔄
- Clone repositories
- Commit changes
- Push to remote
- Pull updates
-
Enhanced Functionality 🚀
- Config persistence (auto-saves user inputs)
- Multi-file selection dialog
- Real-time console output
- Interactive tooltips
- Branch selection support
- Secure token masking
-
Advanced Features 💡
- Threaded operations (prevents UI freezing)
- Input validation
- Git repository detection
- Status notifications
- Cross-platform support (releases are only available as .exe)
-
Prerequisites
- Python 3.6+
- Tkinter (usually included with Python)
-
Run the application
python GitLabManager.py
-
Configure Connection
- Enter GitLab repository URL
- Provide username and personal access token
- Select local directory
-
File Management 📂
- Use "Select Files" button to choose files for commit
- View selected files in the listbox
-
Git Operations
- Clone: Initialize repository copy
- Commit: Stage selected files with message
- Push: Upload changes to remote
- Pull: Fetch latest updates
-
Console Output 📋
View real-time command execution results in the integrated console
- Automatic saving to
config.json
:{ "repo_url": "https://gitlab.com/your/repo.git", "username": "your_username", "token": "your_token", "local_dir": "/path/to/directory", "commit_message": "Default commit message", "branch": "main" }
- Config file is automatically created/updated on exit
GitLabManager/
├── main.py
├── config.json
├── README.md
├── LICENSE
├── logo.ico
├── logo.png
└── requirements.txt
This project is licensed under the MIT License - see LICENSE file for details
Contributions are welcome! Please follow these steps:
- Fork the repository
- Create your feature branch
- Commit your changes
- Push to the branch
- Open a pull request
- Built with Python's Tkinter framework
- Inspired by Discord's modern UI design
- Git integration powered by Git command-line tools
Version 0.2.1 Changelog
- icon added
- fixed some bugs
- added some improvements
Version 0.2 Changelog
- Added Discord-style theme implementation
- Implemented real-time console output
- Added file selection dialog and listbox
- Introduced configuration persistence
- Added threaded command execution
- Improved error handling and validation
- Added interactive tooltips
- Implemented token visibility toggle