#Adding an existing project to GitHub using the command line
Simple steps to add existing project to Github.
In Terminal, change the current working directory to your local project.
##2. Initialize the local directory as a Git repository.
git init
| import sys | |
| import os | |
| import csv | |
| from PyQt5.QtWidgets import QTableWidget, QApplication, QMainWindow, QTableWidgetItem, QFileDialog | |
| class MyTable(QTableWidget): | |
| def __init__(self, r, c): | |
| super().__init__(r, c) | |
| self.check_change = True |
| import sys | |
| from PyQt5.QtWidgets import QTableWidget, QApplication, QMainWindow, QTableWidgetItem | |
| class MyTable(QTableWidget): | |
| def __init__(self, r, c): | |
| super().__init__(r, c) | |
| self.init_ui() | |
| def init_ui(self): |