Create a new repository Generate a local git repo in the project working directory: git init . SSH to remote server create a bare repo using the project name: ssh tim@fileserv git init --bare /files/git/xxxxxxx exit Add the files to be tracked and commit: git add blah.c git commit -a -m "Initial commit." Add the remote repo and push: git remote add origin tim@fileserv:/files/git/xxxxxxx git push --set-upstream origin master
Resizable table using main window resize as redraw trigger. Create an item_resize_handler that calls the table redraw, and bind the main window to it. import dearpygui.dearpygui as dpg import random import string DEBUG = 1 def generate_entries(): entries = [] for x in range(1, 10): entry = {} for y in ["A", "B", "C", "D", "E"]: entry[y] = "".join(random.SystemRandom().choices(string.ascii_uppercase, k=6)) entries.append(entry) return entries def draw_entry_table(parent, entries): if dpg.does_item_exist("entry_table"): dpg.delete_item("entry_table", children_only=False) table = dpg.add_table( tag="entry_table", header_row=True, parent=parent, re...